Search results

Types

Classes
Interfaces
Enums
Functions
Type aliases
Constants

Members

Properties
Methods
Getters
Setters
Enum members
Show privates

Other

In this module only

Const SpecialUrls

Defined in constants

Tools.URIEncodeWrap({
  SPOTIFY_TRACK: (trackId: string): string =>
    `https://open.spotify.com/track/${trackId}`,
  YOUTUBE_VIDEO: (videoId: string): string =>
    `https://youtu.be/${videoId}`,
  YOUTUBE_VIDEO_EMBED: (videoId: string): string =>
    `https://www.youtube.com/embed/${videoId}`,
  YOUTUBE_VIDEO_THUMBNAIL: (videoId: string): string =>
    `https://img.youtube.com/vi/${videoId}/maxresdefault.jpg`,
})